/* =========================
   FOOTER
========================= */

.container-footer{
    width: 100%;
    background: #000;
    padding: 90px 8% 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* =========================
   LOGO + TEXTO
========================= */

.img-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 70px;
}

.img-footer img{
    width: 220px;
    margin-bottom: 28px;

    transition: transform 0.5s ease;
}

/* HOVER LOGO */

.img-footer img:hover{
    transform: scale(1.05);
}

.img-footer h3{
    max-width: 650px;
    color: #d6d6d6;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* =========================
   PARTE INFERIOR
========================= */

.container-copy{
    position: absolute;
    left: 8%;
    bottom: 35px;
}

.container-copy p{
    color: #9a9a9a;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* =========================
   ICONOS REDES
========================= */

.container-iconos{
    position: absolute;
    right: 8%;
    bottom: 28px;

    display: flex;
    align-items: center;
    gap: 18px;
}

/* LINKS */

.container-iconos a{
    width: 52px;
    height: 52px;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.08);

    transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

/* ICONOS */

.container-iconos i{
    color: white;
    font-size: 1.1rem;

    transition: 0.3s ease;
}

/* HOVER ICONOS */

.container-iconos a:hover{

    transform:
    translateY(-5px)
    scale(1.08);

    background: white;

    box-shadow:
    0px 10px 25px rgba(255,255,255,0.12);
}

/* CAMBIO COLOR ICONO */

.container-iconos a:hover i{
    color: black;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 768px){

    .container-footer{
        padding: 70px 8% 40px;
    }

    .img-footer{
        margin-bottom: 55px;
    }

    .img-footer img{
        width: 180px;
    }

    .img-footer h3{
        font-size: 1rem;
        line-height: 1.7;
    }

    /* PARTE INFERIOR */

    .container-copy,
    .container-iconos{
        position: static;
    }

    .container-copy{
        margin-bottom: 28px;
        text-align: center;
    }

    .container-copy p{
        font-size: 0.9rem;
    }

    .container-iconos{
        justify-content: center;
        flex-wrap: wrap;
    }

    .container-iconos a{
        width: 48px;
        height: 48px;
    }

    .container-iconos i{
        font-size: 1rem;
    }
}